home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / GNUST / !GNUst / st / Debugger < prev    next >
Text File  |  1991-09-13  |  3KB  |  85 lines

  1. "======================================================================
  2. |
  3. |   Experimental Debugger
  4. |
  5.  ======================================================================"
  6.  
  7.  
  8. "======================================================================
  9. |
  10. | Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  11. | Written by Steve Byrne.
  12. |
  13. | This file is part of GNU Smalltalk.
  14. |
  15. | GNU Smalltalk is free software; you can redistribute it and/or modify it
  16. | under the terms of the GNU General Public License as published by the Free
  17. | Software Foundation; either version 1, or (at your option) any later version.
  18. | GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  19. | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  20. | FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  21. | details.
  22. | You should have received a copy of the GNU General Public License along with
  23. | GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  24. | Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  25. |
  26.  ======================================================================"
  27.  
  28.  
  29. "
  30. |     Change Log
  31. | ============================================================================
  32. | Author       Date       Change 
  33. | sbyrne     25 Dec 89      created.
  34. |
  35. "
  36.  
  37. Object subclass: #Debugger
  38.        instanceVariableNames: ''
  39.        classVariableNames: 'Breakpoints'
  40.        poolDictionaries: ''
  41.        category: 'Method debugging'!
  42.  
  43. Debugger comment:
  44. 'I provide a simple breakpoint facility for GNU Smalltalk.  In the future,
  45. I may be expanded to perform inspection, and other useful functions.
  46. One idea would be to have an instance of a debugger created for each method
  47. that has breakpoints, or somehow have the debugger run from a separate
  48. processes that has a higher priority.'!
  49.  
  50. !Debugger class methodsFor: 'breakpoint management'!
  51.  
  52. recordOldByte: byte atIndex: anIndex forMethod: aMethod
  53.     "I preserve the original byte code from a compiled method, for restoration
  54.     after the breakpoint is removed.  My implementation does not notice if
  55.     the compiled method is shared; so a breakpoint in a compiled method will 
  56.     cause a break in whichever classes share this method.  This does not occur
  57.     at all in practice, so it's probably not an issue."
  58.     | breakpointDict |
  59.     byte == self debugByte
  60.     ifTrue: [ ^self ].
  61.     breakpointDict _ Breakpoints at: aMethod
  62.                  ifAbsent: [ Dictionary new ].
  63.     breakpointDict at: anIndex put: byte
  64. !
  65.  
  66. origByteAt: anIndex forMethod: aMethod
  67.     "I return the original byte code at the given index for the given method.
  68.     If there is no breakpoint for that method at that index, I return nil."
  69.     breakpointDict _ Breakpoints at: aMethod
  70.                  ifAbsent: [ ^nil ].
  71.     ^breakpointDict at: anIndex
  72.             ifAbsent: [ ^nil ]
  73. !!
  74.  
  75.  
  76.  
  77. !Debugger class methodsFor: 'private'!
  78.  
  79. debugByte
  80.     "Answer the byte code that the debugger uses for breakpoints"
  81.     ^127
  82. !!
  83.